-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.02 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
{
"name": "rollup-plugin-atomic",
"version": "2.0.0",
"description": "Rollup plugin used in atom-ide-community",
"repository": "https://github.com/atom-ide-community/rollup-plugin-atomic",
"license": "MIT",
"author": "Amin Yahyaabadi",
"main": "dist/main.js",
"scripts": {
"build": "npm run tsc",
"bump": "ncu -u -x coffeescript",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "npm run build",
"test.format": "prettier . --check",
"test.lint": "eslint .",
"tsc": "tsc -p src/tsconfig.json"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/core": "^7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "8.4.0",
"@rollup/plugin-wasm": "^5.1.2",
"array-includes-any": "^2.7.3",
"csso-cli": "^4.0.0",
"rollup": "^2",
"rollup-plugin-assemblyscript": "^2.0.0",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-coffee-script": "2.0.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-execute": "^1.1.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "^5.6.0",
"tslib": "^2.3.1",
"typescript": "^4"
},
"devDependencies": {
"assemblyscript": "*",
"npm-check-updates": "16.5.6",
"prettier-config-atomic": "^3.0.6",
"typescript": "^4.2.3"
},
"peerDependencies": {
"rollup": "^2"
},
"optionalDependencies": {
"@babel/core": "^7",
"assemblyscript": "*",
"coffeescript": "^1 || ^2",
"typescript": "^4"
},
"keywords": [
"rollup",
"plugin",
"atomic",
"js",
"javascript",
"ts",
"typescirpt",
"coffee",
"coffeescript",
"json",
"css",
"babel",
"wasm",
"as",
"assemblyscript",
"terser",
"replace",
"sourcemaps",
"commonjs",
"resolve",
"autoExternal"
]
}