-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "code-example",
"version": "3.3.7",
"author": "kenny wong <wowohoo@qq.com>",
"license": "MIT",
"description": "Language code example.",
"homepage": "https://jaywcjlove.github.io/code-example",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"main": "./ext.json",
"scripts": {
"prepare": "npm run start",
"start": "BABEL_ENV=production babel src --out-dir lib --copy-files --verbose && npm run create",
"create": "node scripts.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/code-example.git"
},
"files": [
"lib",
"src",
"txt",
"code",
"ext.json",
"names.txt.json"
],
"devDependencies": {
"@babel/cli": "7.23.4",
"@babel/core": "7.23.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-async-to-generator": "7.23.3",
"@babel/plugin-transform-runtime": "7.23.4",
"@babel/preset-env": "7.23.3",
"@babel/runtime": "7.23.4"
},
"dependencies": {}
}