-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "create-ikas-theme",
"version": "1.2.0",
"description": "Create ikas theme with a single command.",
"main": "index.js",
"private": false,
"scripts": {
"build": "rm -rf build && rollup -c && ./helpers/shebang.js",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikascom/create-ikas-theme.git"
},
"keywords": [
"ikas",
"react",
"next"
],
"bin": {
"create-ikas-theme": "./build/index.cjs"
},
"files": [
"./build"
],
"author": "ikas team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikascom/create-ikas-theme/issues"
},
"homepage": "https://github.com/ikascom/create-ikas-theme#readme",
"dependencies": {
"inquirer": "^9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/inquirer": "^8.2.1",
"rollup": "^2.75.6",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-executable": "^1.6.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ttypescript": "^1.5.12",
"typescript": "^4.5.4",
"typescript-transform-paths": "^2.2.2"
}
}