forked from SAPTARSHI-coder/EaseMotion-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.69 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "easemotion-css",
"version": "1.2.0",
"description": "Human-readable, animation-first CSS framework with a zero-config motion engine. Zero dependencies.",
"main": "easemotion.css",
"style": "easemotion.css",
"module": "easemotion/index.js",
"exports": {
".": "./easemotion.css",
"./min": "./easemotion.min.css",
"./engine": "./easemotion/index.js",
"./engine/parser": "./easemotion/engine/parser.js",
"./engine/compiler": "./easemotion/engine/compiler.js",
"./engine/optimizer": "./easemotion/engine/optimizer.js",
"./engine/runtime": "./easemotion/engine/runtime.js",
"./core": "./core/animations.css"
},
"files": [
"easemotion.css",
"easemotion.min.css",
"core/",
"components/",
"easemotion/",
"scss/",
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "node scripts/build-minified-css.mjs",
"build:watch": "node scripts/build-minified-css.mjs --watch",
"resolve-conflict": "node scripts/resolve-conflict.mjs",
"build:scss": "sass scss/_index.scss dist/easemotion.scss.css",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "stylelint \"**/*.css\"",
"lint:css": "npm run lint",
"lint:duplicates": "node scripts/check-duplicates.mjs",
"lint:fix": "stylelint \"**/*.css\" --fix",
"format": "prettier --write \"**/*.{css,html,js,md}\"",
"validate:manifest": "node scripts/validate-package.mjs",
"validate:bundle": "node scripts/validate-bundle.mjs",
"validate:pack": "node scripts/validate-pack.mjs",
"benchmark": "node benchmarks/bundle-size.mjs",
"benchmark:fps": "node benchmarks/fps-test.mjs",
"release:check": "npm run validate:manifest && npm run validate:bundle && npm run build && npm run lint && npm run lint:duplicates && npm test && npm run validate:pack",
"validate:release": "npm run release:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saptarshi-coder/easemotion-css.git"
},
"keywords": [
"css",
"framework",
"animation",
"motion-engine",
"animation-dsl",
"utilities",
"easemotion",
"zero-dependency",
"tree-shaking",
"no-build"
],
"author": "Saptarshi Sadhu (https://github.com/SAPTARSHI-coder)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saptarshi-coder/easemotion-css/issues"
},
"homepage": "https://github.com/saptarshi-coder/easemotion-css#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"sass": "^1.77.0",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"vitest": "^4.1.8"
}
}