-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@okikio/animate",
"version": "2.3.1",
"type": "module",
"sideEffects": false,
"description": "An animation library for the modern web which utilizes the Web Animation API (WAAPI) to create butter smooth animation.",
"publishConfig": {
"access": "public",
"main": "lib/api.cjs.js",
"types": "@types/api.d.ts",
"browser": "lib/api.es.js",
"module": "lib/api.es.js",
"exports": {
".": {
"require": "./lib/api.cjs.js",
"import": "./lib/api.es.js",
"default": "./lib/api.es.js"
},
"./lib/*": "./lib/*.js"
}
},
"main": "src/api.ts",
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"src",
"@types"
],
"scripts": {
"build": "del-cli lib/ && node ./build",
"watch": "del-cli lib/ && node ./build --watch",
"dts": "del-cli @types/ && tsc --project dts.tsconfig.json",
"pre-release": "pnpm build && pnpm dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okikio/native.git"
},
"keywords": [
"ts",
"modern",
"animation",
"library",
"web",
"css",
"smooth"
],
"author": {
"name": "Okiki Ojo",
"email": "hey@okikio.dev",
"url": "https://okikio.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/okikio/native/issues"
},
"homepage": "https://github.com/okikio/native/tree/master/packages/animate#readme",
"dependencies": {
"@okikio/emitter": "workspace:*",
"@okikio/manager": "workspace:*"
},
"devDependencies": {
"del-cli": "^4.0.0",
"esbuild": "^0.12.12",
"gzip-size": "^6.0.0",
"pnpm": "^10.28.2",
"pretty-bytes": "^5.6.0",
"typescript": "~4.3.4"
},
"gitHead": "ad422076cdb57d570426f786886129d5bca2f90f"
}