-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "@benev/slate",
"version": "0.3.0-2",
"description": "frontend web stuff",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/index.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s build-code build-ssg",
"build-code": "turtle build --out=x -v",
"build-ssg": "turtle ssg --in=s,x --out=x -v",
"build-links": "ln -s $(realpath assets) x/assets",
"start": "run-p start-http start-watch",
"start-http": "http-server x",
"start-watch": "turtle watch --in=s,x --out=x -v",
"test": "cynic node x/tests.test.js",
"test-watch": "chokidar 'x/**/*.js' -c 'npm test'"
},
"dependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@benev/turtle": "^0.6.3",
"chokidar": "^4.0.1",
"chokidar-cli": "^3.0.0",
"cynic": "^0.2.1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.2"
},
"keywords": [
"framework",
"component-framework",
"state",
"state-management",
"toolkit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/slate.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/slate/issues"
},
"homepage": "https://github.com/benevolent-games/slate#readme"
}