-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@bundleup/sdk",
"version": "0.2.0",
"description": "Official JavaScript/TypeScript SDK for BundleUp",
"homepage": "https://github.com/bundleup/bundleup-sdk-js#readme",
"bugs": {
"url": "https://github.com/bundleup/bundleup-sdk-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bundleup/bundleup-sdk-js.git"
},
"license": "ISC",
"author": "BundleUp",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"clean": "rm -rf dist",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.0.0",
"prettier": "^3.8.0",
"prettier-plugin-packagejson": "^3.0.0",
"ts-jest": "^29.1.0",
"tsup": "^7.0.0",
"turbo": "^1.10.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.53.1"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}