-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 973 Bytes
/
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
{
"name": "@boklisten/bl-model",
"version": "0.26.9",
"description": "generic classes for use in all boklisten apps",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc",
"prettier": "prettier --write '**/*.{ts,md}' --ignore-path=.gitignore",
"prettier:check": "prettier --check '**/*.{ts,md}' --ignore-path=.gitignore",
"blink": "yarn build && cp package.json dist && cd dist && yarn link",
"pub": "npm version patch && npm run build && cp package.json README.md dist && cd dist && npm publish --registry https://registry.npmjs.org/"
},
"dependencies": {
"typescript": "^5.7.2"
},
"devDependencies": {
"prettier": "^3.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boklisten/bl-model.git"
},
"author": "",
"bugs": {
"url": "https://github.com/boklisten/bl-model/issues"
},
"homepage": "https://github.com/boklisten/bl-model#readme"
}