-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 3.37 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
{
"name": "@primeuix/monorepo",
"version": "0.4.0",
"author": "PrimeTek Informatics",
"repository": {
"type": "git",
"url": "git+https://github.com/primefaces/primeuix.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/primefaces/primeuix/issues"
},
"scripts": {
"setup": "npx rimraf --glob **/node_modules **/dist ./pnpm-lock.yaml && pnpm run ng:setup && pnpm run vue:setup && pnpm run init",
"init": "pnpm install && husky",
"link": "pnpm --filter './packages/*' dev:link",
"release": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary",
"release:beta": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag beta",
"release:rc": "pnpm run build && pnpm recursive publish --filter './packages/*' --no-git-checks --report-summary --tag rc",
"build": "cross-env NODE_ENV=production pnpm run build:check && pnpm run build:packages",
"build:check": "pnpm run format:check && pnpm run security:check",
"build:packages": "pnpm run build:forms && pnpm run build:locale && pnpm run build:styled && pnpm run build:styles && pnpm run build:themes && pnpm run build:utils",
"build:forms": "pnpm --filter forms build",
"build:locale": "pnpm --filter locale build",
"build:styled": "pnpm --filter styled build",
"build:styles": "pnpm --filter styles build",
"build:themes": "pnpm --filter themes build",
"build:utils": "pnpm --filter utils build",
"ng:setup": "./scripts/setup.sh ng",
"ng:dev": "./scripts/dev.sh ng",
"vue:setup": "./scripts/setup.sh vue",
"vue:dev": "./scripts/dev.sh vue",
"typecheck": "pnpm --filter './packages/*' typecheck",
"test": "pnpm run test:locale",
"test:locale": "pnpm --filter locale test",
"security:check": "pnpm audit --production --audit-level high",
"format": "prettier --write \"**/*.{js,mjs,ts,mts,d.ts}\"",
"format:check": "prettier --check \"**/*.{js,mjs,ts,mts,d.ts}\" ",
"lint": "eslint",
"lint:fix": "eslint --fix --ext \".js,.mjs,.ts\" --ignore-path .gitignore ."
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^27.4.0",
"cross-env": "^7.0.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^12.0.0",
"pnpm": "^9.6.0",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"rollup": "^4.18.0",
"rollup-plugin-postcss": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.4.0",
"tsup": "^8.1.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.22.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.{js,mjs,ts,mts,d.ts}": ["prettier --write"]
}
}