forked from frictionlessdata/datapackage-v2-draft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "datapackage.org",
"type": "module",
"version": "2.0-draft",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "astro build && npm run profiles",
"clean": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' +",
"format": "eslint --fix . && prettier --write .",
"generate": "astro sync",
"lint": "eslint . && prettier --check .",
"preview": "astro preview --port 8080",
"profiles": "node profiles/build.js",
"start": "astro dev --open --port 8080",
"update": "ncu -u",
"test": "npm run lint"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.6.4",
"@astrojs/markdown-remark": "^5.1.1",
"@astrojs/starlight": "^0.24.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"astro": "^4.11.1",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.2",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"js-yaml": "^4.1.0",
"npm-check-updates": "^16.14.20",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0",
"rehype-autolink-headings": "^7.1.0",
"remark-custom-heading-id": "^2.0.0",
"starlight-blog": "^0.9.0",
"starlight-links-validator": "^0.9.0",
"vanilla-back-to-top": "^7.2.1"
}
}