-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.9 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
72
73
74
75
76
77
78
{
"name": "valtio-kit",
"description": "Valtio enhanced with Vite superpowers",
"type": "module",
"version": "0.1.5",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
},
"./vite": {
"types": "./dist/vite/plugin.d.ts",
"default": "./dist/vite/plugin.js"
},
"./transform": {
"types": "./dist/transform/index.d.ts",
"default": "./dist/transform/index.js"
},
"./globals": {
"types": "./globals.d.ts"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"default": "./dist/runtime/index.js"
}
},
"files": [
"dist",
"*.d.ts"
],
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/aleclarson/valtio-kit.git"
},
"prettier": "@alloc/prettier-config",
"scripts": {
"dev": "rimraf dist && tsup --sourcemap --watch",
"build": "rimraf dist && tsup",
"lint": "tsc -p . --outDir node_modules/.tmp",
"test": "vitest"
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"radashi": "^12.3.0",
"react": "^19.0.0",
"rimraf": "^6.0.1",
"tinyspawn": "^1.3.3",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"valtio": "^2.1.2",
"vite": "^6.0.7",
"valtio-kit": "link:",
"vitest": "^2.1.8"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.19.1",
"@typescript-eslint/utils": "^8.19.1",
"magic-string": "^0.30.17"
},
"peerDependencies": {
"react": "*",
"valtio": "*",
"vite": "*"
}
}