-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "@e280/strata",
"version": "0.3.0-2",
"description": "state management",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "./x/index.js",
"files": [
"x",
"s"
],
"exports": {
".": "./x/index.js",
"./prism": "./x/prism/index.js",
"./signals": "./x/signals/index.js",
"./tracker": "./x/tracker/index.js"
},
"scripts": {
"build": "rm -rf x && mkdir x && ln -s '$(realpath node_modules)' x/node_modules && tsc",
"start": "octo 'tsc -w' 'node --watch x/test.js'",
"test": "node x/test.js",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +"
},
"dependencies": {
"@e280/stz": "^0.2.24"
},
"devDependencies": {
"@e280/octo": "^0.1.0-12",
"@e280/science": "^0.1.8",
"@types/node": "^25.4.0",
"typescript": "^5.9.3"
},
"keywords": [
"state",
"state management"
],
"homepage": "https://github.com/e280/strata#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e280/strata.git"
},
"bugs": {
"url": "https://github.com/e280/strata/issues"
}
}