-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.04 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@visible-radio/ptr-window",
"version": "1.3.0",
"repository": {
"url": "https://github.com/Visible-Radio/windowPTR.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"@Visible-Radio:registry": "https://npm.pkg.github.com"
},
"private": false,
"author": "Patrick Kaipainen",
"description": "A responsive canvas based text renderer.",
"files": [
"dist"
],
"main": "./dist/ptr.cjs",
"module": "./dist/ptr.js",
"exports": {
".": {
"import": "./dist/ptr.js",
"require": "./dist/ptr.cjs"
}
},
"types": "./dist/ptr.d.ts",
"type": "module",
"homepage": "https://visible-radio.github.io/windowPTR/",
"scripts": {
"dev": "open -n -a 'Google Chrome' --args '--new-window' http://localhost:5173 https://github.com/Visible-Radio/windowPTR https://github.com/Visible-Radio/windowPTR/issues && vite",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "tsc && vite build --config vite.config-gh-pages.js",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"gh-pages": "^5.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^3.5.2",
"@semantic-release/changelog": "github:semantic-release/changelog",
"@semantic-release/git": "github:semantic-release/git",
"semantic-release": "^24.0.0"
},
"dependencies": {
"vitest": "^0.28.5"
},
"release": {
"branches": [
{
"name": "main",
"channel": "latest"
},
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm"
],
"@semantic-release/github",
"@semantic-release/git"
]
}
}