-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.22 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
114
115
116
117
118
119
{
"name": "pack.gl",
"description": "Package Builder.",
"version": "0.1.6",
"config": {
"version_short": "0.0"
},
"keywords": [
"pack.gl",
"pack",
"package",
"packager",
"build",
"builder",
"compile",
"compiler",
"framework",
"web"
],
"homepage": "https://www.pack.gl/",
"author": "Lars van Vianen <[email protected]> (https://vianen.com)",
"contributors": [
"Scape Agency <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stylescape/pack.gl.git"
},
"bugs": {
"url": "https://github.com/stylescape/pack.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"main": "src/ts/index.ts",
"type": "module",
"module": "dist/js/index.js",
"bin": {
"pack": "dist/js/cli.js"
},
"scripts": {
"format": "npx prettier --write .",
"lint": "eslint 'src/**/*.ts' || true",
"prettify": "prettier --write 'src/**/*.ts'",
"build": "npm run build-compile && npm run build-process",
"build-compile": "tsc -p bin/tsconfig.json",
"build-process": "node bin/js/index.js",
"build-tsc": "tsc -p ./tsconfig.json",
"test": "node --loader ts-node/esm scripts/run-tests.ts"
},
"dependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jsdom": "^21.1.6",
"@types/nunjucks": "^3.2.6",
"@types/svg-sprite": "^0.0.39",
"autoprefixer": "^10.4.16",
"chokidar": "^4.0.0",
"cssnano": "^7.0.4",
"del": "^8.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.0.0",
"express": "^4.21.0",
"express-rate-limit": "^7.5.0",
"fantasticon": "^3.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"jsdom": "^25.0.0",
"lodash": "^4.17.21",
"nunjucks": "^3.2.4",
"postcss": "^8.4.32",
"postcss-preset-env": "^10.0.0",
"prettier": "^3.0.3",
"sass": "^1.69.7",
"semver": "^7.5.4",
"sharp": "^0.33.1",
"svg-sprite": "^2.0.2",
"svgo": "^3.1.0",
"terser": "^5.26.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/eslint": "^9.6.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.9",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.6",
"@types/ws": "^8.5.12",
"jest": "^29.7.0",
"mocha": "^11.0.1",
"pack.gl": "^0.1.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"overrides": {
"chokidar": "^4.0.0"
},
"files": [
"src/**",
"dist/**"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}