-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
{
"author": {
"email": "keesey+phylopic@gmail.com",
"name": "T. Michael Keesey"
},
"bugs": {
"url": "https://github.com/keesey/phylopic/issues"
},
"dependencies": {
"@phylopic/utils": "*",
"normalize-diacritics": "^4.0.3"
},
"description": "Type declarations and validation for PhyloPic API value objects.",
"devDependencies": {
"@phylopic/tsconfig": "*",
"eslint": "^8.57.0",
"eslint-config-phylopic": "*",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0",
"yarn": "^1.22.22"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist/**"
],
"homepage": "https://github.com/keesey/phylopic/packages/api-models#readme",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"name": "@phylopic/api-models",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keesey/phylopic.git"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"lint": "TIMING=1 eslint --fix src/**/*.ts*",
"test": "vitest --watch=false"
},
"types": "./dist/index.d.ts",
"version": "1.3.4"
}