-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 2.19 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
{
"name": "xstate-monorepo",
"private": true,
"version": "0.0.0-development",
"description": "Modern devtools for XState state machines",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r --parallel --filter=./packages/* --filter=./example --filter=./extension run dev",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"check": "pnpm -r check",
"test": "pnpm test -r -- --run",
"format": "prettier --write README.md packages/**/*.{js,ts,svelte} extension/**/*.{js,ts,svelte} example/**/*.{ts,js} example-svelte/**/*.{js,ts,svelte} example-react/**/*.{ts,js} example-vue/**/*.{vue,ts,js}",
"format:check": "prettier --check README.md packages/**/*.{js,ts,svelte} extension/**/*.{js,ts,svelte} example-svelte/**/*.{js,ts,svelte} example-react/**/*.{tsx,ts,js} example-vue/**/*.{vue,ts,js} example/**/*.{ts,js}",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"keywords": [
"xstate",
"state machines",
"fsm"
],
"author": "Richard Laffers",
"license": "ICS",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-svelte": "^2.34.0",
"eslint-plugin-vue": "^9.17.0",
"eslint-plugin-xstate": "^1.1.3",
"husky": "^7.0.0",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.7.0",
"vite": "^2.9.9",
"vite-plugin-web-extension": "^1.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"sideEffects": false,
"homepage": "https://github.com/rlaffers/xstate-ninja",
"repository": {
"type": "git",
"url": "https://github.com/rlaffers/xstate-ninja"
},
"volta": {
"node": "18.17.0"
},
"engines": {
"node": ">=16.0.0"
}
}