forked from sskyy/data0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.54 KB
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
{
"name": "data0",
"version": "2.16.0",
"description": "Reactive state management library",
"devDependencies": {
"@microsoft/api-extractor": "^7.38.5",
"@playwright/test": "^1.40.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^2.1.9",
"typescript": "5.9.2",
"vite": "^5.0.11",
"vite-plugin-dts": "4.5.4",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^2.1.8",
"vue": "^3.4.38"
},
"type": "module",
"sideEffects": false,
"scripts": {
"test": "vitest",
"test:prod": "vitest run -c vitest.prod.config.ts",
"build": "vite build && vite build --mode dev && node scripts/postbuild.mjs",
"release": "node scripts/release.js",
"bench": "vitest bench",
"bench-dev": "vite --port 7000",
"bench-pw": "playwright test tests/example.spec.ts",
"type-check": "tsc --noEmit",
"mutation": "stryker run"
},
"main": "dist/data0.umd.cjs",
"module": "dist/data0.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "sskyy <skyking_h@hotmail.com>",
"license": "MIT",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"development": "./dist/data0.dev.js",
"default": "./dist/data0.js"
},
"require": {
"types": "./dist/index.d.cts",
"development": "./dist/data0.dev.umd.cjs",
"default": "./dist/data0.umd.cjs"
}
},
"./package.json": "./package.json"
}
}