-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "[libraryName]",
"version": "0.0.0",
"description": "",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"files": [
"dist/",
"types/"
],
"exports": {
".": [
{
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.22.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.7",
"typescript": "~5.5.4",
"typescript-eslint": "^8.6.0"
},
"scripts": {
"test": "bash run test",
"prepublishOnly": "bash run prepublish-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/[repositoryOwner]/[repositoryName].git"
},
"keywords": [],
"author": {
"name": "[authorFullName]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/[repositoryOwner]/[repositoryName]/issues"
},
"homepage": "https://github.com/[repositoryOwner]/[repositoryName]#readme"
}