-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "superstate",
"version": "1.0.0-beta.4",
"description": "",
"main": "index.js",
"module": "index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./index.d.mts",
"default": "./index.mjs"
}
},
"./mermaid": {
"require": {
"types": "./mermaid/index.d.ts",
"default": "./mermaid/index.js"
},
"import": {
"types": "./mermaid/index.d.mts",
"default": "./mermaid/index.mjs"
}
}
},
"scripts": {
"test": "vitest run",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kossnocorp/superstate.git"
},
"keywords": [
"state"
],
"author": "Sasha Koss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kossnocorp/superstate/issues"
},
"homepage": "https://github.com/kossnocorp/superstate#readme",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@parcel/watcher": "^2.4.1",
"@swc/core": "^1.4.12",
"babel-plugin-add-import-extension": "^1.6.0",
"benny": "^3.7.1",
"bytes-iec": "^3.1.1",
"glob": "^10.3.12",
"picocolors": "^1.0.0",
"typescript": "^5.5.0-beta",
"vitest": "^1.4.0",
"xstate": "^5.9.1"
}
}