-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 2.44 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "klap",
"version": "0.0.0-development",
"description": "zero config, zero dependency bundler for tiny javascript packages.",
"repository": "osdevisnot/klap",
"license": "MIT",
"author": "osdevisnot <[email protected]>",
"main": "dist/index.js",
"bin": {
"klap": "cli.js"
},
"files": [
"dist",
"cli.js"
],
"scripts": {
"prebuild": "patch-package",
"build": "ncc build src/klap.js -e typescript -mo dist",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"format": "prettier --write 'examples/**/dist/*.js'",
"presetup": "git clean -fdX",
"setup": "npm install",
"test": "echo 'run ./test.sh'",
"watch": "npm run build -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "xo --fix"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"xo": {
"ignores": [
"examples/**"
],
"prettier": true,
"rules": {
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-module": "off"
}
},
"prettier": {
"bracketSpacing": true,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
},
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/plugin-proposal-decorators": "7.18.2",
"@babel/plugin-proposal-object-rest-spread": "7.18.0",
"@babel/plugin-transform-regenerator": "7.18.0",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@emotion/babel-plugin": "11.9.2",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "4.0.0",
"@rollup/plugin-typescript": "8.3.3",
"@rollup/pluginutils": "4.2.1",
"@types/node": "17.0.42",
"@vercel/ncc": "0.34.0",
"babel-plugin-codegen": "4.1.5",
"babel-plugin-dev-expression": "0.2.3",
"babel-plugin-macros": "3.1.0",
"babel-plugin-styled-components": "2.0.7",
"cz-conventional-changelog": "3.3.0",
"deepmerge": "4.2.2",
"getopts": "2.3.0",
"gzip-size": "7.0.0",
"husky": "^8.0.1",
"kleur": "4.1.4",
"mkdirp": "1.0.4",
"patch-package": "6.4.7",
"pretty-bytes": "6.0.0",
"rollup": "2.75.6",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-polyfill-node": "0.9.0",
"semantic-release": "19.0.3",
"servor": "4.0.2",
"sort-package-json": "1.57.0",
"terser": "5.14.1",
"typescript": "^4.7.3",
"xo": "0.50.0",
"xo-quick": "0.0.10"
}
}