-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.8 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
79
80
81
82
{
"name": "@geut/staty",
"version": "2.3.3",
"description": "Build a proxy-state from plain objects",
"type": "module",
"main": "./dist/index.cjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./src/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"types"
],
"scripts": {
"start": "node index.js",
"build": "esbuild src/index.js --bundle --format=cjs --target=es2022 --outfile=./dist/index.cjs --sourcemap && npm run types",
"test": "uvu",
"posttest": "npm run lint",
"lint": "eslint src/**/*.js",
"prepublishOnly": "npm test && npm run build && npm run types",
"coverage": "c8 uvu",
"make-badge": "coverage-badges",
"types": "tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"devDependencies": {
"c8": "^7.11.0",
"coverage-badges": "^1.0.7",
"esbuild": "^0.17.11",
"mitata": "^0.1.6",
"nanobench": "^3.0.0",
"standard": "^17.0.0",
"typescript": "^5.1.0-dev.20230313",
"uvu": "^0.5.1",
"valtio": "^1.10.3"
},
"standard": {
"env": [
"node",
"browser"
]
},
"tsup": {
"entry": [
"src/index.js"
],
"format": [
"cjs",
"iife"
],
"globalName": "Staty",
"splitting": false,
"sourcemap": true,
"clean": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/staty.git"
},
"keywords": [
"create",
"geut",
"module"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/staty/issues"
},
"homepage": "https://github.com/geut/staty#readme",
"publishConfig": {
"access": "public"
}
}