-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 957 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@madahapa/jotai",
"version": "0.0.1",
"description": "A jotai clone for vanilla JS",
"keywords": [
"state",
"management",
"atomic"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/strange-life/jotai.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest watch",
"build": "unbuild",
"prepack": "pnpm build",
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "pnpm test:types && vitest run",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vitest": "^2.0.5"
}
}