-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.6 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
82
83
84
85
86
87
88
89
{
"name": "chatgpt2graph",
"version": "0.2.0",
"description": "Graph ChatGPT usage over time.",
"bin": {
"chatgpt2graph": "./src/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --open",
"build": "webpack --mode production",
"serve": "webpack serve --mode production --open --port 3000",
"format:js": "semistandard --fix --ignore 'dist/*' --ignore .cache --ignore .git --ignore node_modules --ignore lib/version.js",
"format:md": "prettier --parser markdown --write .github/README.md.jinja2 LICENSE.md",
"format": "npm run format:js && npm run format:md",
"genversion": "genversion --esm lib/version.js",
"deploy": "gh-pages -d dist/chatgpt2graph -b gh-pages",
"flow": "flow",
"flow:stop": "flow stop",
"flow:check": "flow check",
"prepublishOnly": "cp -f .github/README.remotified.md README.md && git diff --cached --name-only | xargs npm pack --dry-run"
},
"type": "module",
"author": "realazthat@gmail.com",
"license": "MIT",
"dependencies": {
"@caporal/core": "^2.0.7",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"canvas": "^2.11.2",
"crypto-browserify": "^3.12.0",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"https-browserify": "^1.0.0",
"jsdom": "^25.0.0",
"net-browserify": "^0.1.4",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.4",
"util": "^0.12.5",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@babel/plugin-transform-flow-strip-types": "^7.23.3",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.1.3",
"favicons-webpack-plugin": "^6.0.1",
"flow-bin": "^0.228.0",
"flow-typed": "^4.0.0",
"genversion": "^3.2.0",
"gh-pages": "^6.1.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"json-schema-to-typescript": "^15.0.1",
"longjohn": "^0.2.12",
"prettier": "^3.2.5",
"punycode": "^1.4.1",
"quicktype": "^23.0.170",
"semistandard": "^17.0.0",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"targets": {
"modern": {
"engines": {
"browsers": ">= 50%"
}
}
},
"engines": {
"node": ">=18.0.0 <19.0.0 || >=20.0.0 <21.0.0 || >=21.0.0 <22.0.0 || >=22.0.0 <23.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
],
"plugins": []
}
}