-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.19 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.19 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
{
"name": "@lifaon/traits",
"version": "4.0.0",
"type": "module",
"main": "./index.js",
"scripts": {
"fb:build": "node fabrique/actions/build.js",
"fb:format": "prettier --write --ignore-unknown --config ./.prettierrc \"src/**/*.{js,jsx,ts,tsx,html,css,scss}\"",
"fb:test": "vitest",
"fb:test:coverage": "vitest run --coverage",
"fb:prod": "node fabrique/actions/build.js && cd dist && npm publish --access public --registry https://registry.npmjs.org",
"fb:dev": "node fabrique/actions/build.js --dev && cd dist && npm publish --quiet --registry http://localhost:4873 --tag beta",
"fb:dev:public": "node fabrique/actions/build.js --dev && cd dist && npm publish --access public --registry https://registry.npmjs.org --tag beta"
},
"description": "Traits in typescript",
"keywords": [],
"author": "Valentin RICHARD",
"license": "MIT",
"access": "public",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"packageManager": "yarn@4.5.1",
"fabrique": {
"version": "0.2.1",
"type": "lib"
}
}