-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"name": "@spx/test",
"private": true,
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "rm -rf public && concurrently \"pnpm run e2e\" \"pnpm run tsup\" \"pnpm run sass\"",
"tsup": "tsup --watch",
"e2e": "eleventy --config=.eleventy.cjs --serve --watch --quiet",
"sass": "sass ./asset/style.scss public/style.css --poll --watch --no-source-map"
},
"keywords": [],
"author": "",
"license": "ISC",
"tsup": {
"entry": {
"bundle": "./asset/suite.ts"
},
"outDir": "./public",
"clean": false,
"treeshake": false,
"minify": false,
"minifyIdentifiers": false,
"minifySyntax": false,
"minifyWhitespace": false,
"splitting": false,
"platform": "browser",
"format": [
"iife"
]
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@brixtol/bootstrap": "^1.7.5",
"@types/mergerino": "^0.4.5",
"@types/node": "^22.6.1",
"concurrently": "^9.0.1",
"e11ty": "^0.1.1",
"mergerino": "^0.4.0",
"sass": "^1.79.3",
"tsup": "^8.3.0"
},
"dependencies": {
"esthetic": "0.6.4-beta.1",
"mithril": "^2.2.2",
"papyrus": "^0.6.8",
"relapse": "^0.9.1",
"spx": "link:.."
}
}