-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.93 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
66
67
68
69
70
71
72
73
74
75
{
"name": "fiume",
"type": "module",
"version": "0.3.5",
"description": "lightweight javascript/typescript state machine",
"types": "dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marco-ippolito/fiume.git"
},
"bugs": {
"url": "https://github.com/marco-ippolito/fiume/issues"
},
"homepage": "https://fiume.marcoippolito.dev",
"keywords": [
"fsm",
"finite state machine",
"state machine"
],
"scripts": {
"prepublishOnly": "git push origin --follow-tags",
"prepare": "husky install",
"format": "biome format src test docs --write",
"lint": "biome check src test docs",
"pretest": "pnpm build",
"prebuild": "rimraf dist",
"build": "tsc -d",
"test": "pnpm run \"/^test:.*/\"",
"test:javascript": "c8 --100 node --test",
"test:typescript": "tsd",
"markdownlint": "markdownlint '**/*.md' --fix --ignore node_modules --ignore docs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"c8": "^10.1.2",
"husky": "^9.0.6",
"markdownlint-cli": "^0.43.0",
"@orama/orama": "3.0.4",
"@orama/plugin-vitepress": "3.0.4",
"@orama/searchbox": "1.0.0-rc53",
"@types/node": "^22.0.0",
"rimraf": "^6.0.1",
"tsd": "^0.31.0",
"typescript": "^5.2.2",
"vitepress": "1.5.0"
},
"author": {
"name": "Marco Ippolito",
"email": "marcoippolito54@gmail.com",
"url": "https://marcoippolito.dev",
"author": true
},
"license": "Apache-2.0",
"exports": {
".": [
{
"import": "./dist/index.js"
},
"./dist/index.js"
],
"./package.json": "./package.json"
},
"tsd": {
"directory": "test/types"
}
}