-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.28 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
{
"name": "@semantic-ui/query",
"version": "0.11.2",
"title": "Semantic UI Query",
"description": "DOM querying and manipulation library for Semantic UI",
"author": "Jack Lukic <jack@semantic-ui.com>",
"homepage": "https://next.semantic-ui.com",
"license": "ISC",
"main": "src/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js",
"browser": "./dist/bundle/index.min.js",
"importmap": "./dist/cdn/index.min.js"
}
},
"scripts": {
"build": "wireit",
"test": "vitest"
},
"files": [
"src",
"dist",
"types",
"README.md",
"LICENSE"
],
"dependencies": {
"@semantic-ui/utils": "^0.11.2"
},
"devDependencies": {
"@semantic-ui/internal-scripts": "^0.11.2",
"vitest": "^3.0.4"
},
"wireit": {
"build": {
"dependencies": [
"build:esm",
"build:bundle",
"build:cdn"
]
},
"build:esm": {
"command": "node ../../internal-packages/scripts/src/build-esm.js"
},
"build:bundle": {
"command": "node ../../internal-packages/scripts/src/build-bundle.js"
},
"build:cdn": {
"command": "node ../../internal-packages/scripts/src/build-cdn.js"
}
}
}