-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "@epok.tech/fn-time",
"version": "0.2.1",
"description": "Simple time-stepping - frame, real-time, constant-step - via any API.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/keeffEoghan/fn-time.git"
},
"author": "Eoghan O'Keeffe <[email protected]> (https://epok.tech)",
"license": "MIT",
"engines": {
"node": "v16.13.0 || *",
"yarn": "3.1.0 || *"
},
"packageManager": "[email protected]",
"scripts": {
"start": "yarn build",
"dev": "parcel --log-level verbose --target es",
"build": "rm -rf ./dist/ && parcel build --target es --target cjs",
"dev:safe": "yarn dev --no-cache",
"build:safe": "yarn build --no-cache"
},
"devDependencies": {
"parcel": "^2.0.1"
},
"main": "dist/main/index.js",
"module": "dist/es/index.js",
"source": [
"index.js"
],
"files": [
"*.js",
"dist/**/*"
],
"targets": {
"cjs": {
"outputFormat": "commonjs",
"isLibrary": true,
"engines": {
"browsers": "last 2 versions, > 0.5%, not dead"
},
"distDir": "dist/main/",
"publicUrl": "dist/main/"
},
"es": {
"outputFormat": "esmodule",
"isLibrary": true,
"engines": {
"browsers": "last 2 versions, > 0.5%, not dead"
},
"distDir": "dist/es/",
"publicUrl": "dist/es/"
}
},
"bugs": {
"url": "https://github.com/keeffEoghan/fn-time/issues"
},
"homepage": "https://github.com/keeffEoghan/fn-time#readme",
"keywords": [
"time",
"utils"
]
}