-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
113 lines (113 loc) · 3.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@v4fire/core",
"description": "V4Fire core library",
"homepage": "https://github.com/V4Fire/Core#readme",
"main": "lib/core/index.js",
"typings": "index.d.ts",
"license": "MIT",
"version": "3.101.3",
"author": "kobezzza <[email protected]> (https://github.com/kobezzza)",
"repository": {
"type": "git",
"url": "git+https://github.com/V4Fire/Core.git"
},
"bugs": {
"url": "https://github.com/V4Fire/Core/issues"
},
"keywords": [
"V4Fire",
"Core"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "SOURCEMAPS=true gulp watch:server",
"build": "gulp build:server",
"build:tsconfig": "node build/build-tsconfig",
"build:standalone": "gulp build:standalone",
"watch:standalone": "gulp watch:standalone",
"build:decl": "gulp build:standalone-decl",
"build:docs": "typedoc",
"test": "yarn build && yarn test:typescript && yarn test:eslint && yarn test:jest",
"test:linters": "yarn test:typescript && yarn test:eslint",
"test:typescript": "node node_modules/@v4fire/typescript-check",
"test:eslint": "npx eslint config build src",
"test:jest": "cross-env NODE_ENV=development && jest",
"test:ci:jest": "cross-env NODE_ENV=development && jest --maxWorkers 4 --reporters github-actions"
},
"dependencies": {
"@babel/runtime": "7.21.0",
"@swc/core": "1.2.153",
"@swc/helpers": "0.3.8",
"@v4fire/config": "1.0.0",
"cross-env": "7.0.3",
"dom-storage": "2.1.0",
"eventemitter2": "6.4.5",
"form-data": "4.0.0",
"fs-extra": "10.0.1",
"got": "11.8.3",
"jsdom": "18.1.1",
"node-fetch": "2.6.2",
"ts-node": "10.7.0",
"tslib": "2.3.1",
"w3c-xmlserializer": "2.0.0"
},
"optionalDependencies": {
"@babel/core": "7.17.5",
"@babel/helper-module-transforms": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.2",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@babel/template": "7.16.7",
"@config/config": "npm:[email protected]",
"@pzlr/build-core": "2.13.0",
"del": "6.0.0",
"dotenv": "10.0.0",
"fake-indexeddb": "3.1.7",
"find-up": "5.0.0",
"glob": "7.2.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-header": "2.0.9",
"gulp-if": "3.0.0",
"gulp-load-plugins": "2.0.7",
"gulp-monic": "2.0.15",
"gulp-plumber": "1.2.1",
"gulp-rename": "2.0.0",
"gulp-replace": "1.1.3",
"gulp-run": "1.7.1",
"gulp-sourcemaps": "3.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"is-path-inside": "3.0.3",
"monic": "2.6.1",
"node-blob": "0.0.2",
"node-object-hash": "2.3.10",
"path-equal": "1.1.3",
"requestidlecallback": "0.3.0",
"through2": "4.0.2",
"tsc-alias": "1.6.1",
"tsconfig": "7.0.0",
"tsconfig-paths": "3.13.0",
"typedoc": "0.22.13",
"typescript": "4.6.2",
"upath": "2.0.1"
},
"devDependencies": {
"@types/fs-extra-promise": "1.0.10",
"@types/got": "9.6.12",
"@types/gulp": "4.0.9",
"@types/gulp-load-plugins": "0.0.33",
"@types/jest": "29.5.5",
"@types/node": "16.11.25",
"@types/through2": "2.0.36",
"@v4fire/linters": "1.9.0",
"express": "4.17.3",
"husky": "7.0.4",
"jest": "29.7.0",
"ts-jest": "29.1.1",
"xhr2": "0.2.1"
},
"packageManager": "[email protected]"
}