-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.09 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
{
"name": "@fr0st/query",
"version": "4.0.1",
"private": false,
"description": "Lightweight JavaScript library for DOM querying, traversal, manipulation, events, animation, AJAX, and browser utilities.",
"keywords": [
"ajax",
"animation",
"dom",
"dom-manipulation",
"events",
"frost",
"javascript",
"query",
"traversal",
"utilities"
],
"homepage": "https://github.com/elusivecodes/fQuery",
"bugs": {
"url": "https://github.com/elusivecodes/fQuery/issues",
"email": "elusivecodes@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elusivecodes/fQuery.git"
},
"license": "MIT",
"author": "Elusive",
"type": "module",
"exports": {
".": "./src/index.js",
"./dist/*": "./dist/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"main": "src/index.js",
"jsdelivr": "dist/fquery.min.js",
"unpkg": "dist/fquery.min.js",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"scripts": {
"build": "npm run js-compile && npm run js-minify",
"js-compile": "rollup --config",
"js-lint": "eslint",
"js-minify": "terser --compress passes=2 --mangle --source-map \"content=dist/fquery.js.map,url=fquery.min.js.map\" --output dist/fquery.min.js dist/fquery.js",
"test": "npm run build && npm run test:browser",
"test:browser": "playwright test --forbid-only",
"test:headed": "playwright test --forbid-only --headed",
"test:ui": "playwright test --ui"
},
"dependencies": {
"@fr0st/core": "^3.0.4"
},
"devDependencies": {
"@fr0st/eslint-config": "^4.0.0",
"@playwright/test": "^1.62.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"eslint": "^10.8.1",
"rollup": "^4.62.4",
"terser": "^5.50.0"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"publishConfig": {
"access": "public"
}
}