-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.65 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.65 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
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
{
"name": "react-machine",
"version": "0.5.0",
"description": "A lightweight state machine for React applications",
"types": "types",
"sideEffects": false,
"files": [
"*"
],
"scripts": {
"test": "oxlint && prettier --check '**/*.{js,css,yml}' && ava && npm run package-check",
"format": "prettier --write '**/*.{js,css,yml}'",
"package-check": "npm run build && cd dist && package-check",
"coverage": "c8 --reporter=html ava",
"build": "node ./build.js",
"watch": "nodemon --ignore dist ./build.js",
"version": "npm run build",
"release": "np",
"release-beta": "np --tag=beta",
"types": "tsc"
},
"license": "MIT",
"author": "Karolis Narkevicius <hello@kn8.lt>",
"repository": {
"type": "git",
"url": "git+https://github.com/humaans/react-machine.git"
},
"engines": {
"node": "*"
},
"keywords": [
"react",
"state",
"effects",
"react hook",
"state machine",
"finite state machine",
"finite automata"
],
"peerDependencies": {
"react": "^17.0.1"
},
"devDependencies": {
"@swc-node/register": "^1.10.10",
"@swc/core": "^1.11.24",
"@skypack/package-check": "^0.2.2",
"ava": "^5.3.1",
"c8": "^11.0.0",
"esm": "^3.2.25",
"execa": "^9.6.1",
"jsdom": "^28.1.0",
"oxlint": "^1.50.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.9.3"
},
"ava": {
"files": [
"test/test-*.js"
],
"require": [
"@swc-node/register"
],
"environmentVariables": {
"SWCRC": "true"
}
},
"np": {
"contents": "./dist",
"releaseDraft": false
}
}