-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "@kineticcafe/svelte-fsm-eventless",
"version": "2.0.0",
"description": "Tiny (<1kb), expressive, Svelte-optimized Finite State Machine (FSM) library with support for eventless transitions",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"types": "index.d.ts",
"scripts": {
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"test": "pnpm run test:units && pnpm run test:types",
"test:types": "tsc --noEmit --target es6 test/*.ts",
"test:units": "mocha"
},
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/kineticcafe/svelte-fsm-eventless.git"
},
"keywords": ["svelte", "fsm", "finite", "state", "machine"],
"author": "Ken Kunz & Stuart Watt",
"license": "MIT",
"bugs": {
"url": "https://github.com/kineticcafe/svelte-fsm-eventless/issues"
},
"homepage": "https://github.com/kineticcafe/svelte-fsm-eventless#README",
"devDependencies": {
"-": "0.0.1",
"@biomejs/biome": "1.9.4",
"@types/chai": "^5.0.1",
"@types/sinon": "^17.0.2",
"chai": "^5.1.1",
"mocha": "^10.4.0",
"sinon": "^19.0.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}