aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/@asamuzakjp/dom-selector/package.json
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/@asamuzakjp/dom-selector/package.json
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/@asamuzakjp/dom-selector/package.json')
-rw-r--r--vanilla/node_modules/@asamuzakjp/dom-selector/package.json81
1 files changed, 0 insertions, 81 deletions
diff --git a/vanilla/node_modules/@asamuzakjp/dom-selector/package.json b/vanilla/node_modules/@asamuzakjp/dom-selector/package.json
deleted file mode 100644
index 4e8736f..0000000
--- a/vanilla/node_modules/@asamuzakjp/dom-selector/package.json
+++ /dev/null
@@ -1,81 +0,0 @@
-{
- "name": "@asamuzakjp/dom-selector",
- "description": "A CSS selector engine.",
- "author": "asamuzaK",
- "license": "MIT",
- "homepage": "https://github.com/asamuzaK/domSelector#readme",
- "bugs": {
- "url": "https://github.com/asamuzaK/domSelector/issues"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/asamuzaK/domSelector.git"
- },
- "files": [
- "dist",
- "src",
- "types"
- ],
- "type": "module",
- "exports": {
- "import": {
- "types": "./types/index.d.ts",
- "default": "./src/index.js"
- },
- "require": {
- "types": "./dist/cjs/index.d.cts",
- "default": "./dist/cjs/index.cjs"
- },
- "default": {
- "types": "./dist/cjs/types/index.d.cts",
- "default": "./dist/cjs/index.cjs"
- }
- },
- "types": "types/index.d.ts",
- "dependencies": {
- "@asamuzakjp/nwsapi": "^2.3.9",
- "bidi-js": "^1.0.3",
- "css-tree": "^3.1.0",
- "is-potential-custom-element-name": "^1.0.1",
- "lru-cache": "^11.2.5"
- },
- "devDependencies": {
- "@types/css-tree": "^2.3.11",
- "benchmark": "^2.1.4",
- "c8": "^10.1.3",
- "chai": "^6.2.2",
- "commander": "^14.0.3",
- "esbuild": "^0.27.2",
- "eslint": "^9.39.2",
- "eslint-config-prettier": "^10.1.8",
- "eslint-plugin-jsdoc": "^62.5.0",
- "eslint-plugin-prettier": "^5.5.5",
- "eslint-plugin-regexp": "^3.0.0",
- "eslint-plugin-unicorn": "^62.0.0",
- "globals": "^17.2.0",
- "jsdom": "^27.4.0",
- "mocha": "^11.7.5",
- "neostandard": "^0.12.2",
- "prettier": "^3.8.1",
- "sinon": "^21.0.1",
- "tsup": "^8.5.1",
- "typescript": "^5.9.3",
- "wpt-runner": "^6.1.0"
- },
- "overrides": {
- "jsdom": "$jsdom"
- },
- "scripts": {
- "bench": "node benchmark/bench.js",
- "bench:sizzle": "node benchmark/bench-sizzle.js",
- "build": "npm run tsc && npm run lint && npm test && npm run bundle && npm run test:cjs",
- "bundle": "tsup src/index.js --format=cjs --platform=node --outDir=dist/cjs/ --sourcemap --dts",
- "lint": "eslint --fix .",
- "test": "c8 --reporter=text mocha --parallel --exit test/**/*.test.js",
- "test:cjs": "mocha --exit test/index.test.cjs",
- "test:wpt": "node test/wpt/wpt-runner.js",
- "tsc": "node scripts/index clean --dir=types -i && npx tsc",
- "update:wpt": "git submodule update --init --recursive --remote"
- },
- "version": "6.7.8"
-}