-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.38 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.38 KB
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
{
"name": "@c3framework/core",
"version": "1.0.7",
"description": "Construct 3 Addon Development Framework",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/C3Framework/core"
},
"author": {
"name": "Luan Himmlisch",
"email": "luan@himmlisch.com.mx",
"url": "https://github.com/LuanHimmlisch"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/LuanHimmlisch/"
},
"scripts": {
"build": "vite build",
"publish": "npm run build && npm publish"
},
"main": "dist/core.js",
"types": "dist/index.d.ts",
"bin": {
"c3fo": "bin/c3fo.js"
},
"exports": {
".": {
"import": "./dist/core.js",
"types": "./dist/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"bin/",
"templates/",
"src/"
],
"keywords": [
"construct-3",
"construct3",
"scirra",
"framework",
"addons",
"plugins",
"themes"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@csstools/postcss-sass": "^5.1.1",
"acorn": "^8.12.0",
"acorn-typescript": "^1.4.13",
"acorn-walk": "^8.3.4",
"adm-zip": "^0.5.14",
"autoprefixer": "^10.4.21",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"color-convert": "^2.0.1",
"commander": "^12.1.0",
"cors": "^2.8.5",
"cssnano": "^7.0.6",
"dot-path-value": "^0.0.10",
"esbuild": "^0.25.8",
"escodegen": "^2.1.0",
"express": "^4.19.2",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"postcss": "^8.5.3",
"postcss-scss": "^4.0.9",
"sass": "^1.77.6",
"super-fast-md5": "^1.0.3",
"tinyglobby": "^0.2.12",
"window-size": "^1.1.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/cors": "^2.8.17",
"@types/escodegen": "^0.0.10",
"@types/express": "^4.17.21",
"typescript-bundle": "^1.0.18",
"vite": "^7.0.6",
"vite-plugin-dts": "^4.5.4"
}
}