-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "@d3p1/torch-effect",
"version": "1.0.0",
"description": "A torch effect to improve my JS skills",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3p1/torch-effect.git"
},
"keywords": [
"javascript",
"typescript",
"canvas",
"creative-coding",
"javascript-animation"
],
"author": "C. M. de Picciotto <d3p1@d3p1.dev> (https://d3p1.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/d3p1/torch-effect/issues"
},
"homepage": "https://github.com/d3p1/torch-effect#readme",
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@d3p1/commitlint-config": "^1.0.1",
"@eslint/js": "^9.22.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"globals": "^16.0.0",
"husky": "^8.0.3",
"prettier": "3.0.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.0",
"@tailwindcss/vite": "^4.1.3",
"tailwindcss": "^4.1.3"
}
}