-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 986 Bytes
/
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
{
"private": "true",
"name": "xl-store",
"version": "0.1.17",
"author": "coderhxl",
"description": "状态管理库",
"license": "MIT",
"main": "src/index.ts",
"scripts": {
"build": "rollup --config rollup.config.mjs",
"build-strict": "pnpm test-dev && pnpm build && pnpm test-pro",
"test-debug": "rollup --watch --config script/debug.mjs",
"test-dev": "jest test/model.test.ts dev",
"test-pro": "jest test/model.test.ts pro --coverage=false",
"prettier": "prettier --write ."
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@jest/globals": "^29.3.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-run": "^3.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@types/node": "^18.11.9",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rollup": "^3.5.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
}
}