-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.04 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
51
52
53
{
"name": "template-rollup-typescript",
"version": "1.0.0",
"description": "Boilerplate for creating Roll-Up library with Typescript",
"author": "Athaariq Ardhiansyah <[email protected]>",
"license": "MIT",
"keywords": [
"template",
"rollup",
"roll-up",
"roll up",
"typescript",
"ts",
"d.ts",
"tsc",
"cjs",
"CommonJS",
"esm",
"amd"
],
"engines": {
"npm": ">=9.2",
"node": ">=18.19"
},
"packageManager": "[email protected]",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"typings": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"lint": "prettier . --check",
"build": "rollup -c",
"test": "jest",
"format": "prettier . --write"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}