-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
51 lines (51 loc) · 1.36 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
{
"private": true,
"name": "canvas-editor-plugin",
"author": "Hufe",
"license": "MIT",
"version": "1.0.0",
"description": "plugins for canvas-editor",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"homepage": "https://github.com/Hufe921/canvas-editor-plugin",
"repository": {
"type": "git",
"url": "https://github.com/Hufe921/canvas-editor-plugin.git"
},
"keywords": [
"canvas-editor",
"plugin"
],
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"clean:dist": "rm -rf ./packages/**/dist",
"build": "lerna run build",
"test": "lerna run test",
"dev": "lerna run dev",
"type:check": "lerna run type:check",
"lint": "eslint \"packages/*/src/**/*.ts\"",
"prerelease": "pnpm build",
"release:publish": "lerna publish from-git",
"release:package": "lerna publish from-package",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"eslint": "8.44.0",
"lerna": "^7.1.1",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.2"
},
"simple-git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "node scripts/verifyCommit.js"
}
}