-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@comandeer/rollup-plugin-macros",
"version": "0.1.0",
"type": "module",
"description": "Experimental port of Bun macros into Rollup.js",
"exports": {
".": {
"import": "./dist/rollup-plugin-macros.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rlb",
"lint": "eslint --ext .js,.cjs,.mjs,.ts,.cjs,.mts \"./src\" \"./tests\"",
"pretest": "npm run lint",
"test": "c8 ava",
"version": "npm test && npm run build && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Comandeer/rollup-plugin-macros.git"
},
"keywords": [
"Rollup.js",
"macros"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitplease": {
"nohook": true,
"style": "angular",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": "\\S+.*"
},
"author": "Comandeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Comandeer/rollup-plugin-macros/issues"
},
"homepage": "https://github.com/Comandeer/rollup-plugin-macros#readme",
"peerDependencies": {
"rollup": "^3.25.1"
},
"devDependencies": {
"@comandeer/eslint-config": "^0.10.0",
"@comandeer/rollup-lib-bundler": "^0.19.1",
"ava": "^5.3.1",
"c8": "^8.0.0",
"commitplease": "^3.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"rollup": "^3.25.1"
},
"dependencies": {
"escodegen": "^2.0.0",
"estree-walker": "^3.0.3",
"pathe": "^1.1.1",
"tempy": "^3.0.0"
}
}