-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "babel-plugin-un-cjs",
"version": "2.6.0",
"repository": "calebeby/babel-plugin-un-cjs",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"build:watch": "rollup --watch -c rollup.config.mjs",
"type": "tsc --noEmit",
"type:watch": "tsc --noEmit --watch",
"test": "jest",
"check-lint": "eslint . && prettier --check .",
"lint": "eslint --fix . && prettier --write .",
"test:watch": "jest --watch",
"changeset": "changeset",
"version": "changeset version && prettier --write .",
"release": "npm run build && changeset publish"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.22.1",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-sucrase": "5.0.1",
"@sucrase/jest-plugin": "3.0.0",
"@types/babel__core": "7.20.1",
"@types/babel__traverse": "7.20.0",
"@types/jest": "29.5.2",
"@types/node": "20.2.5",
"eslint": "7.32.0",
"eslint-plugin-caleb": "11.0.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"rollup": "3.23.0",
"rollup-plugin-dts": "5.3.0",
"source-map": "0.7.4",
"typescript": "5.1.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.21.5"
},
"peerDependencies": {
"@babel/core": "^7.9.6"
}
}