-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "pyrus-api",
"version": "2.2.0",
"description": "Pyrus API client for TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/simplygoodsoftware/pyrusapi-typescript.git"
},
"type": "module",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/types/index.d.ts",
"exports": {
"require": {
"default": "./build/cjs/index.cjs"
},
"import": {
"default": "./build/esm/index.js"
},
"types": {
"default": "./build/types/index.d.ts"
}
},
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript && dts-bundle-generator --project tsconfig.types.json --no-banner -o ./build/types/index.d.ts index.ts && node ./module-wrapper.js",
"prepare": "husky"
},
"author": {
"name": "Pyrus",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.5.4",
"@types/rollup": "^0.54.0",
"dts-bundle-generator": "^9.5.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "2.5.1",
"rollup": "^4.21.2",
"rollup-plugin-cleandir": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}