-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "grilops",
"version": "0.1.3",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"description": "A Grid Logic Puzzle Solver library, using Typescript and z3.",
"homepage": "https://github.com/logic-pad/grilops",
"repository": {
"url": "https://github.com/logic-pad/grilops.git",
"type": "git"
},
"keywords": [
"puzzle",
"solver",
"logic",
"z3",
"typescript",
"sat"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.build.json && vite build",
"preview": "vite preview",
"prepublishOnly": "bun run build"
},
"type": "module",
"types": "dist/index.d.ts",
"peerDependencies": {
"z3-solver": "^4.13.0"
},
"dependencies": {
"z3-solver": "^4.13.0"
},
"devDependencies": {
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.8.1"
}
}