-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "modern-clippy",
"version": "1.0.2",
"description": "A modern TypeScript implementation of the classic Microsoft Office Assistant (Clippy)",
"type": "module",
"files": [
"dist"
],
"main": "./dist/modern-clippy.umd.cjs",
"module": "./dist/modern-clippy.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/modern-clippy.js",
"require": "./dist/modern-clippy.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build",
"test": "vitest -c vitest.config.ts",
"test:coverage": "vitest run --reporter verbose",
"test:ui": "vitest --ui",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit"
},
"keywords": [
"clippy",
"office-assistant",
"typescript",
"animation",
"ui",
"helper",
"nostalgic",
"microsoft-office"
],
"author": "Dennis Zimmer [email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vchaindz/modern-clippy.git"
},
"bugs": {
"url": "https://github.com/vchaindz/modern-clippy/issues"
},
"homepage": "https://github.com/vchaindz/modern-clippy/blob/main/Readme.md",
"devDependencies": {
"@types/node": "^20.11.25",
"@vitest/ui": "^1.3.1",
"autoprefixer": "^10.4.18",
"happy-dom": "^13.3.8",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.5",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1"
},
"overrides": {
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
}
}