-
Notifications
You must be signed in to change notification settings - Fork 328
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "kirki-toolkit",
"version": "5.0.0",
"description": "Dev toolkit for Kirki Customizer Framework",
"author": "Kirki Framework",
"homepage": "https://themeum.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kirki-framework/kirki"
},
"bugs": {
"url": "https://github.com/kirki-framework/kirki/issues"
},
"dependencies": {
"colord": "^2.9.3",
"jquery": "^3.6.3",
"react": "^17.0.2",
"react-colorful": "^5.6.1",
"react-dom": "^17.0.2",
"reactcss": "^1.2.3",
"sade": "^1.8.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-react": "^7.18.6",
"@parcel/transformer-sass": "^2.8.3",
"@types/jquery": "^3.5.16",
"parcel": "^2.8.3",
"prettier": "npm:wp-prettier@^2.6.2"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"alias": {
"jquery": {
"global": "jQuery"
},
"wp": {
"global": "wp"
},
"react": {
"global": "React"
},
"react-dom": {
"global": "ReactDOM"
}
},
"bin": {
"kirki": "./kirki.mjs"
},
"scripts": {
"kirki": "node ./kirki.mjs",
"build": "node ./kirki.mjs build"
}
}