-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "@nclslbrn/plot-writer",
"version": "0.1.10",
"type": "module",
"main": "./dist/plot-writer",
"types": "./dist/plot-writer",
"module": "./dist/plot-writer.js",
"exports": {
".": {
"import": "./dist/plot-writer.js",
"require": "./dist/plot-writer.umd.cjs",
"type": "./dist/index.d.ts"
}
},
"files": [
"dist/*.js",
"dist/*.cjs",
"dist/*.d.ts"
],
"scripts": {
"dev": "vite",
"test": "vitest",
"preview": "vite preview",
"build": "rm -fr dist/* && tsc --project tsconfig.build.json && vite build",
"deploy": "npm publish",
"demo:dev": "vite demo/ --host",
"demo:build": "tsc && vite build demo/",
"neovimLSP": "yarn dlx @yarnpkg/sdks base"
},
"description": "Write (SVG) text with JavaScript",
"keywords": [
"SVG text",
"PenPlotter",
"font-face",
"Vector font"
],
"homepage": "https://github.com/nclslbrn/plot-writer#readme",
"repository": {
"type": "git",
"url": "https://github.com/nclslbrn/plot-writer.git"
},
"bugs": {
"url": "https://github.com/nclslbrn/plot-writer/issues"
},
"author": {
"name": "nclslbrn",
"email": "nclslbrn@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"eslint": "^9.4.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.0",
"vitest": "^1.6.0"
},
"publishConfig": {
"@nclslbrn:registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16"
},
"packageManager": "yarn@4.2.2"
}