-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.85 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
{
"name": "move.gl",
"description": "move.gl is a ...",
"version": "0.0.1",
"config": {
"version_short": "0.0"
},
"keywords": [
"move.gl",
"stylescape"
],
"homepage": "https://www.move.gl/",
"author": "Lars van Vianen",
"contributors": [
"Scape Agency"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stylescape/move.gl.git"
},
"bugs": {
"url": "https://github.com/stylescape/move.gl/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scape-foundation"
}
],
"main": "src/scss/index.scss",
"type": "module",
"sass": "src/scss/index.scss",
"scripts": {
"build": "npm run build-compile && npm run build-process",
"build-compile": "tsc -p bin/tsconfig.json",
"build-process": "node bin/js/index.js"
},
"dependencies": {
"hue.gl": "^0.0.24",
"unit.gl": "^0.1.2"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.23.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.5.4",
"@types/webpack": "^5.28.1",
"pack.gl": "^0.1.2",
"page.gl": "^0.0.3",
"sass": "^1.66.1",
"sass-loader": "^16.0.1",
"sassdoc": "^2.7.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^6.0.1"
},
"files": [
"src/**",
"dist/**"
],
"exports": {
".": {
"sass": "./scss/index.scss",
"typescript": "./ts/index.scss"
}
}
}