-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 960 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 960 Bytes
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
{
"name": "pointless-lang.github.io",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "node build/build.js && npm run bundle",
"fmt": "deno fmt --ignore=dist",
"lint": "deno lint; stylelint static/css/*",
"pull": "git pull && npm r pointless && npm i https://github.com/pointless-lang/pointless/",
"bundle": "esbuild --bundle --format=esm bundle.js --outfile=dist/bundle.js",
"serve": "serve --config serve.json"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"font-family-name-quotes": null,
"no-descending-specificity": null
}
},
"dependencies": {
"codejar": "^4.3.0",
"esbuild": "^0.25.11",
"gray-matter": "^4.0.3",
"marked": ">=15",
"pointless": "github:pointless-lang/pointless",
"prettier": "^3.6.2",
"serve": "^14.2.4",
"string-argv": "^0.3.2",
"stylelint": "^16.23.0",
"stylelint-config-standard": "^39.0.0"
}
}