forked from stylescape/pack.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.73 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
{
"name": "pack.gl",
"description": "Package Builder.",
"version": "0.0.41",
"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": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/scape-agency/pack.gl.git"
},
"bugs": {
"url": "https://github.com/scape-agency/pack.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"main": "src/ts/index.ts",
"type": "module",
"module": "dist/js/pack.gl.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"
},
"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/node": "^20.10.5",
"@types/nunjucks": "^3.2.6",
"@types/svg-sprite": "^0.0.38",
"autoprefixer": "^10.4.16",
"cssnano": "^7.0.4",
"del": "^7.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"fantasticon": "^2.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"jsdom": "^24.0.0",
"lodash": "^4.17.21",
"nunjucks": "^3.2.4",
"postcss": "^8.4.32",
"postcss-preset-env": "^9.3.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"
},
"devDependencies": {
"@types/eslint": "^8.56.1",
"@types/semver": "^7.5.6",
"block.gl": "^0.0.1",
"deep.gl": "^0.0.1",
"grid.gl": "^0.0.1",
"hue.gl": "^0.0.7",
"icon.gl": "^0.0.20",
"loop.gl": "^0.0.1",
"pack.gl": "^0.0.23",
"page.gl": "^0.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"unit.gl": "^0.0.35"
},
"files": [
"src/**",
"dist/**"
]
}