-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 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
{
"name": "rollup-typescript-babel",
"version": "1.0.0",
"description": "A sample setup using Rollup and Babel to build TypeScript code, and using TypeScript for type-checking.",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js"
},
"main": "dist/rollup-plugin-babel.cjs.js",
"module": "dist/rollup-plugin-babel.esm.js",
"browser": "dist/rollup-plugin-babel.iife.js",
"types": "dist/types/index.d.ts",
"author": {
"name": "Oleksandr T.",
"email": "oleksandr.tarasiuk@outlook.com"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
"@babel/preset-env": "7.18.10",
"@babel/preset-typescript": "7.18.6",
"rollup": "2.77.2",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"typescript": "4.7.4"
}
}