-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
80 lines (80 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@holoflows/kit",
"packageManager": "pnpm@8.15.1",
"version": "0.9.0",
"bugs": {
"url": "https://github.com/DimensionDev/Holoflows-Kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DimensionDev/Holoflows-Kit.git"
},
"license": "AGPL-3.0-or-later",
"sideEffects": false,
"main": "./umd/index.cjs",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"require": "./umd/index.cjs"
},
"./es": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"require": "./umd/index.cjs"
}
},
"scripts": {
"build": "env-cmd -e production run-s clean build:tsc build:rollup",
"build:rollup": "rollup -c -m",
"build:tsc": "tsc -p tsconfig.json",
"clean": "rimraf ./es ./umd ./tmp",
"doc": "run-s build:tsc doc:api doc:md",
"doc:api": "api-extractor run --local --verbose",
"doc:md": "api-documenter markdown -i temp -o api-documents",
"eslint": "eslint . --ext .ts,.tsx",
"eslint:watch": "esw . --ext .ts,.tsx -w --color",
"prepublishOnly": "npm run build",
"start": "env-cmd -e development run-p start:tsc start:rollup",
"start:rollup": "rollup -c -w",
"start:tsc": "tsc --watch -p tsconfig.json"
},
"dependencies": {
"@servie/events": "^3.0.0",
"lodash-es": "^4.17.21",
"tslib": "^2.6.2"
},
"peerDependencies": {
"@types/webextension-polyfill": "^0.10.0"
},
"peerDependenciesMeta": {
"@types/webextension-polyfill": {
"optional": true
}
},
"devDependencies": {
"@masknet/config": "^0.2.1",
"@microsoft/api-documenter": "^7.24.1",
"@microsoft/api-extractor": "^7.43.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@types/lodash-es": "^4.17.12",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"eslint-watch": "^8.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"typescript": "5.4.2"
}
}