-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 931 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 931 Bytes
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
{
"name": "allfeat",
"version": "0.1.0",
"description": "",
"author": "Allfeat labs. <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/allfeat/allfeat-js.git"
},
"private": true,
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "turbo run build",
"build:clean": "turbo run build:clean",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run --parallel typecheck",
"test": "turbo run --parallel test",
"prepare": "husky",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"turbo": "^2.5.4"
}
}