-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.61 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": "pyrus-api",
"description": "Pyrus API client for TypeScript",
"version": "3.7.0",
"author": {
"name": "Pyrus",
"email": "contact@pyrus.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+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",
"tsc": "tsc --noEmit",
"check:version": "node .husky/check-version.mjs",
"test": "vitest"
},
"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.59.0",
"rollup-plugin-cleandir": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}