-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.37 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.37 KB
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
{
"name": "move.gl",
"description": "Motion and Animation Library for Stylescape.",
"version": "0.0.2",
"config": {
"version_short": "0.0"
},
"keywords": [
"move.gl",
"stylescape",
"animation",
"motion",
"sass",
"css",
"transitions",
"keyframes"
],
"homepage": "https://www.move.gl/",
"author": "Lars van Vianen <lars@vianen.com> (https://www.vianen.com)",
"contributors": [
"Scape Agency <info@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"
}
],
"type": "module",
"main": "./dist/js/index.cjs",
"module": "./dist/js/index.mjs",
"types": "./dist/js/index.d.ts",
"sass": "src/scss/index.scss",
"style": "dist/css/move.gl.css",
"scripts": {
"build": "npx kist --config ./kist.yml && npm run build:ts",
"build:ts": "tsup",
"watch": "npx kist --config ./kist.yml --live",
"dev": "vite"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"hue.gl": "^0.1.2",
"unit.gl": "^0.3.1"
},
"devDependencies": {
"@getkist/action-nunjucks": "^2.0.9",
"@getkist/action-sass": "^1.0.4",
"@types/node": "^25.2.0",
"kist": "^0.1.60",
"micromatch": "^4.0.8",
"nunjucks": "^3.2.4",
"sass": "^1.97.3",
"serve-static": "^2.2.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"files": [
"src/**",
"dist/**"
],
"exports": {
".": {
"sass": "./src/scss/index.scss",
"types": "./dist/js/index.d.ts",
"import": "./dist/js/index.mjs",
"require": "./dist/js/index.cjs"
},
"./scss": "./dist/scss/index.scss",
"./css/move.gl.css": "./dist/css/move.gl.css",
"./css/move.gl.min.css": "./dist/css/move.gl.min.css"
},
"typesVersions": {
"*": {
"*": [
"./ts/index.d.ts"
]
}
}
}