-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.18 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "slangroom",
"version": "0.0.3",
"description": "Enhance zencode smart contracts with your slang dialect",
"repository": "https://github.com/dyne/slangroom",
"author": {
"name": "Deniz Engin"
},
"contributors": [
{
"name": "Puria Nafisi Azizi",
"email": "[email protected]"
},
{
"name": "Matteo Cristino"
},
{
"name": "Alberto Lerda"
},
{
"name": "Ennio Donato"
},
{
"name": "Giovanni Abbatepaolo"
}
],
"license": "AGPL-3.0-only",
"scripts": {
"lint": "eslint --ext .ts pkg/*/src pkg/*/test",
"format": "prettier --ignore-path .gitignore --write '**/*.+(js|ts|json|html)'",
"test": "pnpm build && pnpm -F @slangroom/* exec ava --verbose build/esm/test",
"test:grammar": "pnpm build:grammar && pnpm -F codemirror-lang-slangroom test",
"coverage": "c8 -r text -r lcov -o .coverage --exclude '**/test/' pnpm test",
"clean": "rm -rf .coverage && pnpm -F @slangroom/* exec -- rm -rf build",
"build": "pnpm -F @slangroom/* exec tsc --outdir build/esm",
"build:grammar": "pnpm build && pnpm -F codemirror-lang-slangroom build",
"publish:ci": "lerna version --no-changelog --conventional-commits --yes && pnpm publish -r --no-git-checks --filter './pkg/*'",
"docs:api": "node docs/statements/index.mjs",
"docs:examples": "node docs/examples/index.mjs",
"docs:ci": "node docs/statements/index.mjs ci",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs": "pnpm run docs:api && pnpm run docs:examples && pnpm run docs:build"
},
"devDependencies": {
"@lerna-lite/publish": "^3.10.0",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"vitepress": "^1.4.1"
},
"engines": {
"node": "^18.20.0 || ^20.10.0 || ^22 || ^23"
}
}