-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "@sglkc/gsp",
"version": "1.0.0-beta.5",
"description": "Blocks world library implementation for Goal Stack Planning",
"keywords": [
"ai",
"artificial-intelligence",
"planning",
"goal-stack-planning",
"goal-stack-planner",
"block-world",
"block-world-problem"
],
"type": "module",
"main": "dist/GSP.cjs",
"module": "dist/GSP.js",
"browser": "dist/GSP.js",
"types": "dist/GSP.d.ts",
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "https://github.com/sglkc/goal-stack-planning.git"
},
"author": "sglkc",
"bugs": {
"url": "https://github.com/sglkc/goal-stack-planning/issues"
},
"homepage": "https://github.com/sglkc/goal-stack-planning",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin rollup-plugin-typescript2"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"rollup": "^3.28.0",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
}
}