-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.11 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.11 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
{
"name": "@scarperharper/typewriter",
"version": "0.2.20",
"description": "A simple typewriter animation component",
"author": "scarperharper",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/scarperharper/typewriter.git"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "vite build",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "vitest",
"test:watch": "vitest",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"preversion": "npm test",
"version": "npm run build",
"postversion": "echo \"version is $npm_package_version\" && git commit -a -m \"publishing version $npm_package_version\" && git push && git push --tags && gh release create \"v$npm_package_version\" --title \"v$npm_package_version (beta)\" --notes \"\" --prerelease"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@eslint-react/eslint-plugin": "^5.6.0",
"@eslint/css": "^1.0.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^8.0.0",
"@storybook/addon-docs": "^10.2.10",
"@storybook/addon-links": "^10.2.10",
"@storybook/react-vite": "^10.2.10",
"@types/react": "^19.2.14",
"cross-env": "^10.1.0",
"eslint": "^10.0.1",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"npm-run-all": "^4.1.5",
"react": "^19.2.4",
"sass-embedded": "^1.97.3",
"storybook": "^10.2.10",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.0",
"vitest": "^4.0.18"
}
}