-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "ts-automata",
"version": "0.5.1",
"description": "Automata utility package for FSMs, PDAs, TMs in JS/TS.",
"keywords": [
"automata","typescript", "math",
"finite-state-machine","pushdown-automaton",
"turing-machine", "dfa", "nfa", "pda", "tm"
],
"license": "MIT",
"author": "Kiril Panayotov <[email protected]> (https://zakrok.dev)",
"homepage": "https://github.com/Zakrok09/ts-automata",
"exports": {
".": {
"import": "./dist/main.es.js",
"require": "./dist/main.cjs.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vite": "^5.2.9",
"vite-plugin-dts": "^3.8.3",
"vitest": "^1.5.0"
}
}