-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.75 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:types && npm run build:bundle",
"build:bundle": "tsx scripts/bundle.mts",
"build:sizes": "tsx scripts/sizes.mts",
"build:types": "tsc -b tsconfig.build.json",
"change": "changeset add",
"ci:test": "c8 npm test -- --forbid-only",
"format": "eslint -f unix --fix . && prettier . --write --loglevel error && sort-package-json './{,packages/*/}package.json' --quiet",
"prepare": "husky install",
"release": "npm run build && changeset publish && npm ci",
"report": "open ./coverage/lcov-report/index.html",
"test": "mocha",
"test:update": "npm test -- --update",
"version": "changeset version && npm i --package-lock-only"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@marko/compiler": "^5.28.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-virtual": "^3.0.1",
"@types/jsdom": "^21.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"c8": "^8.0.0",
"chalk": "^5.2.0",
"esbuild": "^0.18.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"jsdom-context-require": "^4.0.8",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"mocha-snap": "^5.0.0",
"prettier": "^2.8.8",
"pretty-format": "^29.5.0",
"rollup": "^3.25.1",
"sort-package-json": "^2.4.1",
"table": "^6.8.1",
"tiny-glob": "^0.2.9",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
}
}