UNPKG

1.51 kBJSONView Raw
1{
2 "name": "flip-toolkit",
3 "version": "7.2.5-1",
4 "description": "Configurable FLIP animation helpers",
5 "license": "MIT",
6 "src": "src/index.ts",
7 "main": "lib/index.js",
8 "umd:main": "lib/index.umd.js",
9 "module": "lib/index.es.js",
10 "types": "./lib/index.d.ts",
11 "exports": {
12 "types": "./lib/index.d.mts",
13 "default": "./lib/index.modern.mjs"
14 },
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/aholachek/react-flip-toolkit"
18 },
19 "bugs": "https://github.com/aholachek/react-flip-toolkit/issues",
20 "author": "Alex Holachek",
21 "keywords": [
22 "FLIP",
23 "transition",
24 "animation"
25 ],
26 "engines": {
27 "node": ">=8",
28 "npm": ">=5"
29 },
30 "scripts": {
31 "build": "microbundle --name=FlipToolkit --define process.env.NODE_ENV=production --globals rematrix=Rematrix; cp ./lib/index.d.ts ./lib/index.d.mts",
32 "build:debug": "microbundle --name=FlipToolkit --no-compress",
33 "lint": "echo \"noop\"",
34 "test": "echo \"noop\"",
35 "test:dom": "parcel mocha/testrunner.html",
36 "start": "parcel test/index.html",
37 "prepare": "npm run build",
38 "format": "npx prettier --write 'src/**/*.{ts,tsx}'",
39 "fix": "eslint src/**/*.ts --fix",
40 "format-and-fix": "npm-run-all format fix"
41 },
42 "dependencies": {
43 "rematrix": "0.2.2"
44 },
45 "devDependencies": {
46 "@babel/core": "^7.24.7",
47 "chai": "^4.4.1",
48 "microbundle": "^0.15.1",
49 "mocha": "^8.4.0",
50 "parcel": "^1.12.4",
51 "prettier": "2.8.8"
52 },
53 "files": [
54 "lib"
55 ]
56}