-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "tempaste-parser",
"description": "A simple Typescript parser for Temtem sets written in the TemPaste syntax",
"author": "Adam Jackson",
"license": "MIT",
"homepage": "https://github.com/ahejackson/tempaste-parser/",
"repository": {
"type": "git",
"url": "https://github.com/ahejackson/tempaste-parser.git"
},
"bugs": {
"url": "https://github.com/ahejackson/tempaste-parser/issues"
},
"keywords": [
"temtem",
"parser",
"typescript",
"pokepaste"
],
"version": "1.0.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/tempaste-parser.umd.cjs",
"module": "./dist/tempaste-parser.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/tempaste-parser.js",
"require": "./dist/tempaste-parser.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --coverage"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@vitest/coverage-c8": "^0.27.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.27.1"
}
}