-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "source-tour-work",
"version": "1.0.0",
"description": "源码漫游记作业项目",
"main": "index.js",
"scripts": {
"build:utils": "pnpm run --filter @xiaoxiang/utils build",
"build:reactivity": "pnpm run --filter @xiaoxiang/reactivity build",
"build": "pnpm run --filter=\"@xiaoxiang/*\" build",
"test": "vitest packages/",
"test:once": "vitest run packages/",
"coverage": "vitest run --coverage",
"lint": "eslint packages/**/src",
"lint:fix": "eslint packages/**/src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Q-kil/source-tour-work.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Q-kil/source-tour-work/issues"
},
"homepage": "https://github.com/Q-kil/source-tour-work#readme",
"devDependencies": {
"typescript": "^4.8.4",
"unbuild": "^0.9.4",
"vitest": "^0.24.5"
},
"dependencies": {
"@antfu/eslint-config": "^0.29.3",
"@vitest/coverage-c8": "^0.24.5",
"eslint": "^8.27.0"
}
}