-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "reactivity_v4",
"version": "1.1.4",
"description": "",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"start": "cross-env NODE_ENV=development cross-env DEV_SERVER=true concurrently --raw --kill-others \"npm run tscWatch\" \"npm run dev\"",
"tscWatch": "tsc --noEmit --watch",
"tsc": "tsc",
"types": "tsc --emitDeclarationOnly --outDir \"./dist\"",
"test": "vitest --pool=forks",
"test:ui": "vitest --pool=forks --ui",
"test:run": "vitest run --pool=forks",
"docs:dev": "vitepress dev --port 5201 docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.13.0",
"@types/react": "^18.0.28",
"@vitest/ui": "^1.6.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"jsdom": "^25.0.0",
"typescript": "^5.4.5",
"vite": "^4.5.3",
"vitepress": "^1.3.4",
"vitest": "^1.6.0"
}
}