-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "@trikinco/fullstack-components-root",
"version": "1.0.1",
"description": "AI-powered building blocks for Next.js",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "pnpm@8.7.1",
"repository": {
"type": "git",
"url": "https://github.com/trikinco/fullstack-components.git"
},
"author": "trikinco",
"engines": {
"node": ">=v18.17.1",
"pnpm": ">=8.7.1"
},
"scripts": {
"clean": "rm -Rf ./dist/",
"build": " pnpm run -r --parallel --filter=!*site* build && pnpm i -r && pnpm run --filter=!*fullstack-components* build",
"dev": "cd ./packages/site && pnpm run dev",
"start": "cd ./packages/site && pnpm run start",
"test": "pnpm run -r --parallel test",
"lint": "pnpm run -r --parallel lint",
"prettier": "prettier --write src/*",
"husky:init": "husky install && chmod ug+x .husky/*",
"prepare": "npm run husky:init",
"release": "npx semantic-release",
"semantic-release": "semantic-release"
},
"dependencies": {
"@commitlint/cli": "18.4.2",
"@commitlint/config-conventional": "18.4.2",
"@semantic-release/exec": "6.0.3",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"semantic-release": "22.0.8",
"typescript": "5.2.2"
}
}