-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.82 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.82 KB
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
{
"name": "@item-enonic-types/lib-feature-toggles",
"version": "1.0.0",
"description": "Type definitions for lib-feature-toggles",
"license": "MIT",
"private": false,
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@enonic-types/core": "^7.14.4",
"@enonic-types/global": "^7.14.4",
"@enonic-types/lib-auth": "^7.14.4",
"@enonic-types/lib-context": "^7.14.4",
"@enonic-types/lib-event": "^7.14.4",
"@enonic-types/lib-auditlog": "^7.14.4",
"@enonic-types/lib-node": "^7.14.4",
"@enonic-types/lib-portal": "^7.14.4",
"@enonic-types/lib-repo": "^7.14.4",
"@item-enonic-types/lib-time": "^1.2.1",
"@itemconsulting/xp-storybook-utils": "^0.0.7",
"@swc/core": "^1.10.14",
"@types/node": "^22.13.1",
"concurrently": "^9.1.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
},
"scripts": {
"build": "node tsup/anyServerFiles.js && npx tsup -d build/resources/main",
"check": "concurrently -c auto -g --timings npm:check:types npm:lint",
"check:types": "node tsup/anyServerFiles.js && npx tsc --noEmit -p src/main/resources/tsconfig.json || exit 0",
"lint": "eslint --cache \"src/main/resources/**/*.ts\"",
"prepublishOnly": "tsc -p src/main/resources/tsconfig.json --declaration true --emitDeclarationOnly true --declarationDir dist",
"postpublish": "rm -r ./dist",
"release": "npm run build",
"versioning": "npx changeset version && npm i --package-lock-only && NEW_VERSION=$(node -p \"require('./package.json').version\") && sed -i \"s/version.*/version = ${NEW_VERSION}/\" gradle.properties"
}
}