-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 964 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 964 Bytes
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
{
"name": "@sterra/microscope",
"version": "0.0.16",
"description": "🔬 Atomic state manager for React.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"size": "size-limit"
},
"keywords": [],
"author": "Maze Heart",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sterrahq/microscope.git"
},
"bugs": {
"url": "https://github.com/sterrahq/microscope/issues"
},
"homepage": "https://github.com/sterrahq/microscope#readme",
"peerDependencies": {
"react": ">=17"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"size-limit": "^11.2.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}