-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.88 KB
/
package.json
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
78
79
80
81
82
{
"name": "@glinkis/jslib",
"author": "Victor Glindås",
"version": "2.0.0",
"description": "A modular javascript utility library.",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": {
"import": {
"types": "./dist/*/index.d.mts",
"default": "./dist/*/index.mjs"
},
"default": {
"types": "./dist/*/index.d.ts",
"default": "./dist/*/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"docs": "typedoc --out docs src",
"build": "tsup",
"prepublish": "bun run build",
"lint": "prettier --check \"./*.ts\" \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier": "prettier --write \"./*.ts\" \"src/**/*.ts\" \"test/**/*.ts\"",
"tsc": "tsc",
"test": "bun test",
"test:watch": "bun test --watch"
},
"pre-commit": "lint, test",
"devDependencies": {
"@happy-dom/global-registrator": "^14.12.3",
"@types/bun": "^1.1.5",
"@types/node": "^20.14.8",
"pre-commit": "^1.2.2",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typedoc": "^0.26.2",
"typedoc-plugin-external-module-name": "^4.0.6",
"typescript": "^5.5.2"
},
"homepage": "https://github.com/Glinkis/jslib#readme",
"bugs": {
"url": "https://github.com/Glinkis/jslib/issues"
},
"repository": {
"type": "git",
"url": "git+https://Glinkis@github.com/Glinkis/jslib.git"
},
"keywords": [
"animation",
"easing",
"array",
"color",
"dom",
"interactivity",
"math",
"splines",
"vector",
"library",
"javascript",
"typescript",
"es6",
"modular",
"utilities"
]
}