-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.68 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
{
"private": true,
"type": "module",
"workspaces": [
"./packages/*",
"./packages/adapters/*",
"./examples/*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:lint": "eslint --format unix . && prettier . --check --with-node-modules --log-level=warn",
"@ci:release": "npm run build && node scripts/pkg-toggle && changeset publish && node scripts/pkg-toggle && npm ci",
"@ci:test": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" MARKO_DEBUG=1 c8 npm test",
"@ci:version": "npm run build && npm run format && changeset version && npm i --package-lock-only",
"build": "npm run build -w packages -w packages/adapters --if-present",
"build:examples": "npm run build -w examples",
"change": "changeset add",
"format": "eslint --format unix --fix .; prettier . --write --with-node-modules --log-level=warn",
"lint": "eslint --format unix . && prettier . --check --with-node-modules --log-level=warn",
"prepare": "husky",
"report": "open ./coverage/lcov-report/index.html",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=\"$NODE_OPTIONS --import tsx\" mocha",
"test:update": "cross-env UPDATE_EXPECTATIONS=1 npm test -- --update"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.18.0",
"c8": "^10.1.3",
"eslint": "^9.18.0",
"eslint-formatter-unix": "^8.40.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"netlify-cli": "^17.38.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"pretty-format": "^29.7.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}