-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.19 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "jotter",
"private": true,
"description": "jotter",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "pnpm run clean:libs",
"clean:libs": "rm -rf libs/*/dist",
"format": "prettier --write --cache .",
"format-check": "prettier --check --cache .",
"build": "node scripts/build.js",
"test": "node --experimental-vm-modules scripts/test.js",
"jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"changelog": "node ./scripts/changelog.js",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"reinstall": "rimraf node_modules **/*/node_modules && pnpm install --no-frozen-lockfile"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,mjs,json,cjs}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"engines": {
"node": ">=18.0.0"
},
"lastReleaseCommit": "984c35002186dae36d52d56320e94a92ba2e9896",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.6.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.6",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"diy-log": "^2.5.1",
"execa": "^9.5.1",
"fast-glob": "^3.3.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"simple-git": "^3.27.0",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
}
}