-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 977 Bytes
/
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
{
"name": "@chrisjohnsoct/rolodex",
"version": "1.0.1",
"description": "Rolodex animation",
"private": false,
"author": "johnsoct",
"license": "ISC",
"keywords": [
"css",
"js",
"animation"
],
"main": "./dist/rolodex.mjs",
"files": [
"dist"
],
"repository": "https://github.com/Johnsoct/rolodex.git",
"publishConfig": {
"access": "public",
"@chrisjohnsoct:registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.1",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^5.4.11",
"vitest": "^2.1.6"
}
}