-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.82 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
{
"name": "hooks-plugin",
"version": "1.3.0",
"description": "A plugin system built through various hooks.",
"main": "./dist/hooks.cjs.js",
"unpkg": "./dist/hooks.umd.js",
"module": "./dist/hooks.esm-bundler.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"node": "./dist/hooks.esm-bundler.mjs",
"default": "./dist/hooks.esm-bundler.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/hooks.cjs.js"
}
}
},
"files": ["dist"],
"scripts": {
"test": "jest",
"dev": "ts-node ./test.ts",
"test:cov": "jest --coverage",
"build": "rimraf ./dist && rollup --config && rimraf ./dist/src/__tests__",
"format": "prettier --write --parser typescript \"(src|dist)/**/*.((m)?js|ts?(x))\""
},
"author": "imtaotao",
"keywords": [
"hooks",
"plugin",
"microkernel",
"event",
"tapable",
"debug"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imtaotao/hooks-plugin.git"
},
"bugs": {
"url": "https://github.com/imtaotao/hooks-plugin/issues"
},
"packageManager": "pnpm@9.1.3",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@types/jest": "^29.5.12",
"http-server": "^14.1.1",
"rimraf": "^5.0.7",
"jest": "^29.7.0",
"prettier": "^2.5.1",
"rollup": "^4.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"ts-jest": "^29.1.4",
"typescript": "^4.5.5"
},
"dependencies": {
"aidly": "^1.6.8"
}
}