-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "@paulgeorge35/smartbill",
"version": "1.0.0",
"description": "Type-safe SmartBill client",
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf lib",
"build:esm": "tsc",
"build:cjs": "tsc -p tsconfig-require.json",
"build": "bun run clean && bun run build:esm && bun run build:cjs",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "bun test",
"prepublish": "bun run build"
},
"keywords": [
"smartbill",
"smartbill-api",
"smartbill-client",
"smartbill-typescript"
],
"author": "Paul George <contact@paulgeorge.dev>",
"license": "MIT",
"peerDependencies": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"bun-types": "latest",
"rimraf": "^6.0.1",
"tslint": "^6.1.3",
"typescript": "^5.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulgeorge35/smartbill.git"
},
"engines": {
"node": ">=16.0.0"
}
}