-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
{
"name": "wings",
"private": true,
"homepage": "http://wings.codes",
"repository": {
"type": "git",
"url": "git://github.com/wingshq/wings.git"
},
"author": {
"name": "Wings contributor",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/daffl"
},
"bugs": {
"url": "https://github.com/wingshq/wings/issues"
},
"engines": {
"node": ">= 20"
},
"workspaces": [
"packages/*",
"docs/"
],
"scripts": {
"publish": "lerna publish --force-publish && git commit -am \"chore: Update changelog\" && git push origin",
"publish:major": "lerna publish major && git commit -am \"chore: Update changelog\" && git push origin",
"publish:minor": "lerna publish minor && git commit -am \"chore: Update changelog\" && git push origin",
"publish:patch": "lerna publish patch && git commit -am \"chore: Update changelog\" && git push origin",
"publish:premajor": "lerna publish premajor --preid pre --pre-dist-tag pre && git commit -am \"chore: Update version and changelog\" && git push origin",
"publish:prerelease": "lerna publish prerelease --preid pre --pre-dist-tag pre --dist-tag pre --force-publish && git commit -am \"chore: Update version and changelog\" && git push origin",
"prettier": "npx prettier \"packages/{,!(node_modules)/**/(src|test)/**/}*.ts\" --write",
"eslint": "eslint \"packages/**/src/**.ts\" \"packages/**/test/**.ts\" --fix",
"lint": "npm run prettier && npm run eslint",
"compile": "lerna run compile",
"update-dependencies": "ncu -u && lerna exec -- ncu -u",
"test": "npm run lint && npm run compile && c8 lerna run test",
"generate:adapter": "pinion run generators/adapter.ts"
},
"devDependencies": {
"@feathershq/pinion": "^0.4.0-pre.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"c8": "^8.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"lerna": "^7.1.3",
"npm-check-updates": "^16.10.15",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}