generated from bartveneman/node-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.12 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
{
"name": "css-time-sort",
"description": "Sort an array of CSS <time> values",
"version": "2.0.2",
"type": "module",
"homepage": "https://github.com/projectwallace/css-time-sort",
"repository": {
"type": "git",
"url": "git+https://github.com/projectwallace/css-time-sort.git"
},
"issues": "https://github.com/projectwallace/css-time-sort/issues",
"license": "MIT",
"author": "Bart Veneman",
"keywords": [
"projectwallace",
"wallace",
"css",
"sort",
"time",
"duration",
"animation",
"delay",
"array"
],
"files": [
"dist"
],
"scripts": {
"test": "uvu",
"check": "tsc --noEmit",
"build": "vite build"
},
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/css-time-sort.umd.cjs",
"default": "./dist/css-time-sort.js"
},
"source": "index.js",
"types": "./dist/index.d.ts",
"main": "./dist/css-time-sort.umd.cjs",
"module": "./dist/css-time-sort.js",
"unpkg": "./dist/css-time-sort.umd.cjs",
"devDependencies": {
"@codecov/vite-plugin": "^0.0.1-beta.9",
"c8": "^10.1.2",
"typescript": "^5.4.5",
"uvu": "^0.5.6",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1"
}
}