-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "staticshape",
"description": "A CLI tool to convert a static site into an SSG site to be used as a baseline",
"version": "0.0.7-1",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/**/*.js"
],
"engines": {
"npm": ">=8.0.0",
"node": ">=20.0.0"
},
"bin": "lib/cli.js",
"type": "module",
"dependencies": {
"@clack/prompts": "^1.0.1",
"fastest-levenshtein": "^1.0.16",
"js-yaml": "^4.1.0",
"jsdom": "^28.1.0",
"slugify": "^1.6.6",
"turndown": "^7.2.2"
},
"scripts": {
"publish": "npm run build && np",
"test": "c8 tsx --test test/site.ts test/dom-diff.ts test/layout.ts test/component-builder.ts test/node-equivalency.ts test/loops.ts test/markdown.ts",
"build": "tsc",
"start": "tsc && node lib/cli.js",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' 'test/**/*.json' --write"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^28.0.0",
"@types/node": "^22.19.11",
"@types/turndown": "^5.0.6",
"c8": "^11.0.0",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/staticshape.git"
},
"author": "CloudCannon",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudCannon/staticshape/issues"
},
"homepage": "https://staticshape.app/"
}