-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 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
{
"name": "@truefusion/skittle",
"version": "0.24.2",
"description": "API-agnostic, HTML5 canvas library.",
"main": "./dist/skittle.js",
"type": "module",
"homepage": "https://aimfornan.dev/skittle/",
"repository": {
"type": "git",
"url": "https://github.com/AimForNaN/skittle.git"
},
"engines": {
"node": ">=16"
},
"files": [
"dist/*.js",
"dist/*.cjs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"release": "vite build && np --yolo --no-2fa --no-yarn",
"docs:dev": "astro dev",
"docs:build": "astro build",
"docs:preview": "astro preview"
},
"keywords": [
"html5",
"canvas",
"skittle"
],
"devDependencies": {
"@astrojs/mdx": "^1.1.0",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/vue": "^3.0.0",
"@vitejs/plugin-vue": "^4.3.4",
"animejs": "^3.2.1",
"astro": "^3.1.4",
"hastscript": "^8.0.0",
"less": "^4.2.0",
"remark-directive": "^3.0.0",
"remark-emoji": "^4.0.0",
"tailwindcss": "^3.3.3",
"unist-util-visit": "^5.0.0",
"vite": "^4.4.9",
"vue": "^3.2.30",
"vue-router": "^4.2.5"
},
"dependencies": {
"transformation-matrix": "^2.15.0"
}
}